home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 41
/
Volume 41 - JOGO DISK .iso
/
Games
/
konka_66.swf
/
scripts
/
DefineSprite_215_g_fb
/
frame_1
/
DoAction.as
Wrap
Text File
|
2007-05-10
|
496b
|
32 lines
_width = 36;
_height = 70;
_X = _parent.man._x;
_Y = _parent.man._y + 1;
atk = 20;
xxs = "挨打";
speed = 20;
if(_parent.man._xscale == _parent.man.cc)
{
f = 0;
}
if(_parent.man._xscale == - _parent.man.cc)
{
f = 1;
}
this.onEnterFrame = function()
{
this.swapDepths(100000 + _Y * 100 + id % 100);
if(f == 0)
{
_X = _X - speed;
}
else
{
_X = _X + speed;
}
if(_X < 0 || _X > 450)
{
this.removeMovieClip();
}
};